* process.c (process_send_signal): Add cast to avoid pointer signedness problem.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Mar 2011 02:45:19 +0000 (19:45 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Mar 2011 02:45:19 +0000 (19:45 -0700)
src/ChangeLog
src/process.c

index 6288b76d75308f37f5e16613eef2a29e94cb0298..5963fd60dd3f20a57a512120180f04a77beef446 100644 (file)
@@ -6,6 +6,7 @@
        Rename or move locals.
        (Fmake_network_process): Define label "retry_connect" only if needed.
        (Fnetwork_interface_info): Fix pointer signedness.
+       (process_send_signal): Add cast to avoid pointer signedness problem.
 
 2011-03-19  Paul Eggert  <eggert@cs.ucla.edu>
 
index 3cdf045f4f49bfd9d3a019a3f402330a90d34f3b..ae7ec158ef9700039e9aeaa805d36b51d9843dba 100644 (file)
@@ -5927,7 +5927,7 @@ process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
 
       if (sig_char && *sig_char != CDISABLE)
        {
-         send_process (proc, sig_char, 1, Qnil);
+         send_process (proc, (char *) sig_char, 1, Qnil);
          return;
        }
       /* If we can't send the signal with a character,